POST
/
api
/
object
/
{objid}
Update object.
curl --request POST \
  --url https://api.coinfer.ai/api/object/{objid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "payload": {
    "object_type": "<string>",
    "batch_id": "<string>",
    "run_id": "<string>",
    "chain_name": "<string>",
    "n_sample": 123,
    "stat": {}
  }
}'
{
  "status": "<string>",
  "data": {
    "object_type": "<string>",
    "short_id": "",
    "name": "",
    "model_id": "",
    "status": "",
    "meta": "<any>",
    "n_chains": 0,
    "n_variables": 0,
    "n_samples": 0,
    "sample_update_time": "",
    "run_on": "",
    "input": "<string>",
    "output": "<string>",
    "share_info": [
      {
        "id": 123,
        "password": "<string>",
        "user_id": "<string>",
        "short_id": "<string>",
        "to_user_id": "<string>"
      }
    ],
    "model_name": "<string>",
    "workflow_id": "",
    "workflow_name": ""
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

objid
string
required

Body

application/json
payload
object
required

Response

OK

status
string
required
Allowed value: "ok"
data
object | null
required